Tool tips: This is a GUI (Graphical User Interface) element that is used in conjunction with a cursor and usually a mouser pointer. If the mouse cursor over an item, without clicking a mouse it appears a small box with supplementary information regarding the items.
<html>
<head> <title>Tooltip Demo</title> <style type="text/css"> @import "../resources/dojo.css"; @import "../dijit/themes/tundra/tundra.css"; </style> <script type="text/javascript" src="dojo.xd.js" djConfig="parseOnLoad: true"></script> <script type="text/javascript"> dojo.require("dojo.parser"); dojo.require("dijit.Tooltip"); </script> </head><body class="tundra"> <b>Tooltips:</b> <br><br> <span id="site1">infovision.com</span> <div dojoType="dijit.Tooltip" connectId="site1" label="Where you can find all java related tutorials!"> </div><br><br><br> <span id="site2">tutorialspoint.com</span> <div dojoType="dijit.Tooltip" connectId="site2" label="Where you can find Java Interview Questions!"> </div></body></html> |